home *** CD-ROM | disk | FTP | other *** search
/ PCMania 30 / PCMania CD30.iso / pcmania / graf30 / tacs / prints.h < prev    next >
Text File  |  1988-04-19  |  2KB  |  82 lines

  1. /***************************************************************************\
  2. *
  3. * PVCS Software Configuration Management Control Information
  4. *
  5. * PRINTS.H
  6. *
  7. * $Revision:   1.2  $
  8. *
  9. * $Date:   19 Apr 1988 11:01:04  $
  10. *
  11. * $Author:   BOBG  $
  12. *
  13. * $Logfile:   F:/PUBLIC/421/WORK/INCLUDE/PRINTS.H_V  $
  14. *
  15. * $Log:   F:/PUBLIC/421/WORK/INCLUDE/PRINTS.H_V  $
  16.    
  17.       Rev 1.2   19 Apr 1988 11:01:04   BOBG
  18.    add dlg IDs, expand PRINTER struct
  19.    
  20.       Rev 1.1   05 Apr 1988 17:23:08   BOBG
  21.    print options revised
  22.    
  23.       Rev 1.0   21 Mar 1988 16:20:12   tomh
  24.    Initial revision.
  25. *
  26. \***************************************************************************/
  27.  
  28. /* file PRINTS.H print setups  */
  29.  
  30. #define ID_PRINTENTIRE    20
  31. #define ID_PRINTCURRPART    21
  32. #define ID_DRAFTQUAL    22
  33. #define ID_EXPORTQUAL   23
  34. #define ID_FINALQUAL    24
  35. #define ID_POSITIVEPOL    25
  36. #define ID_NEGATIVEPOL    26
  37. #define ID_POSPAPERREPRO    27
  38. #define ID_FLOPFILMNEG    28
  39. #define ID_POSPAPERPLATE    29
  40. #define ID_FORMATQCBAR    30
  41. #define ID_FORMATCROPM    31
  42. #define ID_FORMATBOX    32
  43. #define ID_BOXTHIN        33
  44. #define ID_BOXMED        34
  45. #define ID_BOXTHICK        35
  46. #define ID_NORMALGRAY    36
  47. #define ID_LIGHTENGRAY    37
  48. #define ID_DARKENGRAY    38 
  49. #define ID_COMPRESSGRAY    39
  50. #define ID_SCRNHALFTONE    40
  51. #define ID_SCRNLINE        41
  52. #define ID_SCRNWAVYLINE    42
  53. #define ID_SCRNMEZZOTINT    43
  54. #define ID_SCREENANGL    44
  55. #define ID_SCREENFREQ    45
  56. #define ID_DATABINARY    46
  57. #define ID_DATAASCII    47
  58.  
  59. #define LASERWR 0
  60. #define LINO100 1
  61. #define LINO300 2
  62. #define VARITYP    3
  63.  
  64. #define PRNAMELENGTH 18
  65. typedef struct {
  66.     char strPrinter[PRNAMELENGTH];
  67.     int     outptPolarity;
  68.     int  grayExpan;
  69.     int  screenPatt;
  70.     int     screenAngl;
  71.     int  screenFreq;
  72.     int     deviceRot;
  73.     int  deviceRes;
  74.     int  exportQual;
  75.     int  formatQCBar;
  76.     int  formatCropM;
  77.     int  formatBox;
  78.     int  imageData;
  79. } PRINTER;
  80.     
  81.  
  82.